# Makefile for leapop 0.8 by Norbert de Jonge
#
# cppcheck --language=c --std=c99 --verbose leapop.c
# Also try the line below with clang instead of gcc.
#
all:
	gcc -O2 -Wno-unused-result -std=c99 -g -pedantic -Wall -Wextra -Wshadow -Wpointer-arith -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes leapop.c -o leapop `sdl2-config --cflags --libs` -lSDL2_ttf -lSDL2_image -lm
